libostree: Add multiple getter/setter support to OstreeAsyncProgress
authorPhilip Withnall <withnall@endlessm.com>
Fri, 28 Apr 2017 15:18:55 +0000 (16:18 +0100)
committerAtomic Bot <atomic-devel@projectatomic.io>
Sat, 29 Apr 2017 11:50:15 +0000 (11:50 +0000)
commitc27b66de80ee09077b770b8059a15e5c541e70e3
tree65600640ea2a4f019bfac08ce6a744197b951c11
parentf74e52a3a0c441f8e56b796d99c492b1a0a2072c
libostree: Add multiple getter/setter support to OstreeAsyncProgress

OstreeAsyncProgress is thread-safe: it can have keys changed by one
thread while another is getting the same keys (modulo some locking
contention). However, the thread safety is done at the function call
level: if some code calls an OstreeAsyncProgress getter several times,
the key fetches are not atomic with respect to each other.

In the case of contention on the lock, this can result in consumers of
OstreeAsyncProgress data seeing an inconsistent state between the
properties they query, which could result in progress reporting
inaccuracies.

In the uncontested case, this results in the OstreeAsyncProgress lock
being locked and unlocked many times more than necessary.

Try to improve this by adding new API, which supports getting and
setting multiple keys atomically:
 • ostree_async_progress_get()
 • ostree_async_progress_set()

The new API uses GVariants and varargs: keys are passed as a
GVariantType string followed by arguments as for g_variant_new() or
g_variant_get(), followed by the next key, etc.

Signed-off-by: Philip Withnall <withnall@endlessm.com>
Closes: #819
Approved by: cgwalters
apidoc/ostree-sections.txt
src/libostree/libostree.sym
src/libostree/ostree-async-progress.c
src/libostree/ostree-async-progress.h